home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / Photoshop 4.0 SDK r2 Mac / Examples / Selection / Selectorama / Selectorama.derez < prev    next >
Text File  |  1996-08-07  |  2KB  |  57 lines

  1. #--- Selectorama.DeRez script -------------------------------------------------
  2. # Copyright 1996.  Adobe Systems, Inc.. All rights reserved.
  3. #
  4. # This script is used to compile the PiPL, PIMI, and other resources
  5. # for this example plug-in.  Use this script if you are using ToolServer
  6. # with the Metrowerks CodeWarrior compiler.  If you are using MPW, you
  7. # should use the Makefile instead.
  8. #
  9. # To use this script:
  10. # -------------------
  11. # (1) In CodeWarrior, start ToolServer (under the Tools menu).  If ToolServer
  12. #     is not installed, refer to the release notes on the CodeWarrior CD.
  13. #
  14. # (2) Open this file in CodeWarrior.
  15. #
  16. # (3) Set the first variable, PIRoot, to point to the root folder for your
  17. #     Photoshop SDK files.  Save any changes.
  18. #
  19. # (4) Choose "Execute as a Script" under the ToolServer menu icon.
  20. #----------------------------------------------------------------------------
  21.  
  22. Set Root "Acehd2:!CodeWork:!InProgress"
  23. Set Headers "{Root}:Examples:Common:Headers.h"
  24. Set RezFiles "{Root}:Examples:Common:Rez-files.r"
  25. Set Source "{Root}:Examples:Selection:Selectorama:"
  26. Set SourceName "Selectorama"
  27.  
  28. Echo
  29. Echo
  30. Echo
  31. Echo
  32. Echo
  33. Echo
  34. Echo
  35. Echo
  36. Echo
  37. Echo
  38. Echo
  39. Echo
  40. Echo
  41. Echo
  42. Echo
  43. Echo
  44. Echo
  45. Echo
  46. Echo "Executing {Sourcename} DeRez script..."
  47.  
  48. # -only 'Path' -only 'DLOG' -only 'DITL' ╢ # -- add to limit derez to just those types
  49. # {RezFiles}":PIGeneral.r" ╢
  50.       
  51. DeRez "{Source}{SourceName}-derez.rsrc" ╢
  52.       "{RezFiles}:PIGeneral.r" ╢
  53.       "{RIncludes}Types.r" ╢
  54.       "{RIncludes}SysTypes.r" ╢
  55.       -d Macintosh=1 -d MSWindows=0 > {Source}{SourceName}"-derez.r"
  56.  
  57. Echo "{SourceName} DeRez done."